From: awilliam@xenbuild2.aw Date: Tue, 27 Mar 2007 15:07:51 +0000 (-0600) Subject: [IA64] Remove debugger calls from panic_domain() X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~15276 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https://%22%22/%22http:/www.example.com/cgi/%22https:/%22%22?a=commitdiff_plain;h=a9e94e0692ebe1e1fa4204be4a038726e8a4940d;p=xen.git [IA64] Remove debugger calls from panic_domain() These hang when compiled with crash_debug=y Signed-off-by: Akio Takebe --- diff --git a/xen/arch/ia64/xen/xenmisc.c b/xen/arch/ia64/xen/xenmisc.c index db4d14975b..450ec45079 100644 --- a/xen/arch/ia64/xen/xenmisc.c +++ b/xen/arch/ia64/xen/xenmisc.c @@ -166,11 +166,7 @@ void panic_domain(struct pt_regs *regs, const char *fmt, ...) (void)vsnprintf(buf, sizeof(buf), fmt, args); va_end(args); printk(buf); - if (regs) show_registers(regs); - if (regs) { - debugger_trap_fatal(0 /* don't care */, regs); - } else { - debugger_trap_immediate(); - } + if (regs) + show_registers(regs); domain_crash_synchronous (); }